home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / PAINT.ZIP / RESDEF.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-10-27  |  953 b   |  35 lines

  1. {************************************************}
  2. {                                                }
  3. {   ObjectWindows Paint demo                     }
  4. {   Copyright (c) 1992 by Borland International  }
  5. {                                                }
  6. {************************************************}
  7.  
  8. unit ResDef;
  9.  
  10. { This unit supplies the constant definitions used in the paint program
  11.   to refer to resources not in the standardly defined.
  12.  
  13.   These declarations are separated from other paint declarations because
  14.   Resource Workshop can only parse a limited subset of Pascal.
  15. }
  16.  
  17. interface
  18.  
  19. const
  20.  
  21.   { Used by Bitmap Size dialog }
  22.   id_WidthField = 101;
  23.   id_HeightField = 102;
  24.   id_StretchBM = 104;
  25.   id_PadBM = 105;
  26.   id_CurrentBMGroup = 106;
  27.  
  28.   { Message numbers for menus }
  29.   cm_OptionsSize = 444;     { An arbitrarily chosen message number }
  30.   cm_HelpAbout = 333;        { Equally arbitrary }
  31.  
  32. implementation
  33.  
  34. end.
  35.